home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Turnbull China Bikeride
/
Turnbull China Bikeride - Disc 2.iso
/
STUTTGART
/
EDITORS
/
VI
/
VIM
/
SOURCE
/
vim
/
doc
/
vim132
< prev
Wrap
Text File
|
1992-08-04
|
249b
|
12 lines
#! /bin/csh
# Shell script for use with UNIX
# Starts up Vim with the terminal in 132 column mode
# Only works on VT-100 terminals and lookalikes
#
set oldterm=$term
echo "?3h"
setenv TERM vt100-w
vim $*
set term=$oldterm
echo "?3l"